home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr28 / ct_ntwre.zip / LOGOFF.DOC < prev    next >
Text File  |  1993-03-01  |  7KB  |  234 lines

  1.  
  2. Computer Tyme LogOff * Version 1.3 * Release Date: 01-08-92
  3. Copyright 1990-92 by Marc Perkel * All Rights Reserved
  4.  
  5. Computer Tyme * 411 North Sherman, Suite 300 * Springfield Mo. 65802
  6. (800) 548-5353 Sales * (417) 866-1222 Voice * (417) 866-1665 Data
  7.  
  8. This program works like LOGOUT that comes with Novell except that
  9. it modifies your PATH by removing drives you can no longer access.
  10. It also will hunt up a new COMSPEC if necessary.
  11.  
  12. If you're running Pick Directory it will hunt up a new PD.PIC file.
  13.  
  14. If you don't want to see any messages when running LOGOFF in a batch
  15. file you can redirect the output to nul as follows:
  16.  
  17. LOGOFF > NUL
  18.  
  19. LogOff also displays:
  20.  
  21. Logging off server: TYME
  22. Logging off server: MARX
  23.  
  24. Removing Path: Z:.
  25. Removing Path: Y:.
  26. Removing Path: X:.
  27. Removing Path: W:.
  28. Removing Path: P:.
  29. Removing Path: U:.
  30. Removing Path: S:.
  31.  
  32. PATH=C:\TP6;C:\;
  33.  
  34. Changing COMSPEC to: C:\COMMAND.COM
  35.  
  36. Setting Pick Directory File to: C:\PD.PIC
  37.  
  38. Price: $35 / Server or $250 unlimited
  39.  
  40. Other Computer Tyme Software:
  41. ======================================================
  42.  
  43. The Computer Tyme Dos ToolBox... Makes DOS easier for the novice,
  44. more powerful for the professional.
  45.  
  46. DIRECTORY MASTER is a powerful hard disk managment utility. It
  47. brings up your hard disk files and allows you to mark selected
  48. files so you can copy them, delete them, or move them. It also
  49. allows you to rename files, change dates, and change attributes.
  50. You can also run programs or set up your function keys to run
  51. programs on selected files.
  52.  
  53. DOLIST makes being at DOS easier. It gives you full line editing,
  54. like a word processor, for your commands. It also stores commands
  55. so that you can re-execute them. It remembers subdirectories and
  56. allows you to go back to them by pressing the TAB key. It offers
  57. programmable function keys, DOS extensions, multiple execution,
  58. and many more features you have got to have.
  59.  
  60. PICK DIRECTORY allows you to move through the directory system by
  61. displaying a graphic tree and letting you use your arrow keys to
  62. move around. It also lets you create, delete, rename, and hide
  63. directories.
  64.  
  65. TEDIT (from SemWare) is a powerful, easy to use full screen
  66. editor.
  67.  
  68. MARXTSR is a set of memory and TSR management utilities that let
  69. you load and unload TSRs (Terminate and stay resident programs)
  70. from memory. Utilities to list menory allocation and turn TSR's
  71. on and off.
  72.  
  73. And many more ... Also includes is D, a fancy directory listing
  74. program; WHEREIS, for finding stuff on you hard disk, SORT, MOVE,
  75. FIND, FREE, PIPEDIR, VERSION, and many more.
  76.  
  77. The Dos Toolbox sells for $59.95.
  78.  
  79. ======================================================
  80.  
  81. We are also selling QEdit from Semware. QEdit is a professional
  82. editor from Semware. TEdit is a mini version of QEdit. If you
  83. like TEdit, You'll love QEdit.
  84.  
  85. 1-800-548-5353 Order Line
  86. 1-417-866-1222 Voice Line
  87. 1-417-866-1665 BBS Data line * 1200/2400 * 8N1 * ANSI or VT100
  88.  
  89.  
  90. MARXMENU:
  91.  
  92. For the menu user who is interested in POWER!
  93.  
  94. MarxMenu version is a menu system that uses NO RAM. MarxMenu is
  95. compatible with all networks and contains a powerful menu language.
  96. This language gives you complete screen control as well as
  97. conditional menus. Math and string functions as well as
  98. multidimensional arrays are supported. MarxMenu can read environment
  99. variables, ports, ram locations, time, dates, the contents of text
  100. files, ect. and make decisions on them.
  101.  
  102. Screen control includes multi-layer exploding windows with
  103. unlimited number of selections and unlimited windows. 43/50 line
  104. ega and vga modes are supported. MarxMenu contains a screen
  105. blanker, password security on anything, keyboard lockout.
  106. MarxMenu can run programs while staying resident and read the dos
  107. errorlevel codes they return or marxmenu can return custom
  108. errorlevel codes to a calling program or batch file. MarxMenu can
  109. view text files in a window, read text files into an array and
  110. let you choose a line from that array in a window. MarxMenu can
  111. write string arrays to text files.
  112.  
  113. This menu system is targeted at the user whose primary interest
  114. is POWER! Here is a simple sample of what MarxMenu script looks
  115. like:
  116.  
  117. ==========================================
  118.  
  119. ;This menu is a sample of a simple menu.
  120. ;To run this menu type 'MARX SAMPLE'
  121.  
  122. TextColor Yellow Red
  123. ClearScreen
  124. BoxBorderColor Green Blue
  125. BoxInsideColor Yellow Blue
  126. DrawBox 25 7 32 13
  127. WriteCenter '* Sample Menu *'
  128. Writeln
  129. Writeln
  130. Writeln '   A - Directory'
  131. Writeln '   B - Wide Directory'
  132. Writeln '   C - Run ChkDsk'
  133. Writeln '   D - Type Menu to Screen'
  134. Writeln '   E - Edit This Menu'
  135. Writeln '   F - Drop to Dos'
  136. Writeln ' Esc - Exit'
  137. Writeln
  138. Write ' Select: '
  139.  
  140. OnKey 'A'
  141.    DIR
  142.    Pause   ;Lets you see the directory before screen clears
  143.  
  144. Onkey 'B'
  145.    DIR/W
  146.    Pause
  147.  
  148. OnKey 'C'
  149.    CHKDSK
  150.    Pause
  151.  
  152. OnKey 'D'
  153.    TYPE SAMPLE.MNU|MORE
  154.    Pause
  155.  
  156. OnKey 'E'
  157.    TEDIT SAMPLE.MNU
  158.  
  159. OnKey 'F'
  160.    @Echo To Return to the SAMPLE menu type EXIT
  161.    @Echo .
  162.    COMMAND
  163.  
  164.  
  165. MarxMenu comes with MarxEdit and MARXTSR manager and a few goodies out of
  166. the DOS ToolBox. The Network Survival Kit is a network version of almost
  167. every utility I've ever written. It's sold on a per fileserver basis.
  168.  
  169.               _______
  170.          ____|__     |               (tm)
  171.       --|       |    |-------------------
  172.         |   ____|__  |  Association of
  173.         |  |       |_|  Shareware
  174.         |__|   o   |    Professionals
  175.       -----|   |   |---------------------
  176.            |___|___|    APPROVED VENDOR
  177.  
  178.    ==========================================
  179.  
  180.  
  181.  
  182.  
  183.         Make Check            Computer Tyme            Order Form
  184.         Payable To:    411 North Sherman Suite 300
  185.                           Springfield Mo. 65802
  186.                      (417) 866-1222  (800) 548-5353
  187.  
  188.         Please send me Computer Tyme Software.
  189.  
  190.         =============================================================
  191.  
  192.         Name:        ________________________________________________
  193.  
  194.         Address:     ________________________________________________
  195.  
  196.         City/St/Zip: ________________________________________________
  197.  
  198.         Phone:       ________________________________________________
  199.  
  200.         Computer:    ________________________________________________
  201.  
  202.         Got From:    ________________________________________________
  203.  
  204.         Comments:    ________________________________________________
  205.  
  206.  
  207.         Single User Version:
  208.  
  209.         ___ Enclosed is $59.95 for MarxMenu.
  210.  
  211.         ___ Enclosed is $59.95 for the DOS ToolBox.
  212.  
  213.         ___ Enclosed is $99.95 for MarxMenu, the Dos ToolBox and DM3.
  214.  
  215.  
  216.         Network Version (1 per file server):
  217.  
  218.         ___ Enclosed is $495 for Network Survival Kit.
  219.  
  220.         ___ Add $3.00 for Shipping and Handling.
  221.  
  222.         ___ I need 3 1/2 Inch Media.
  223.  
  224.  
  225.         Credit Card Number: _______________ Expiration Date: ________
  226.  
  227.         Signature: __________________________________________________
  228.  
  229.         Master Card __   Visa __   Discover __
  230.  
  231.                     * We do not take American Express *
  232.  
  233.         =============================================================
  234.